std::isfinite

From Cppreference

Jump to: navigation, search
Defined in header <cmath>

int isfinite( float arg );
(C++0x feature)
int isfinite( double arg );
(C++0x feature)
int isfinite( long double arg );
(C++0x feature)

Determines if the given floating point number arg has finite value i.e. it is normal, subnormal or zero, but not infinite or NAN.

Parameters

arg - floating point value

Return value

nonzero value if arg has finite value, 0 otherwise

See also

fpclassify (C++0x)
categorizes the given floating point value
(function)
isinf (C++0x)
checks if the given number is infinite
(function)
isnan (C++0x)
checks if the given number is NaN
(function)
isnormal (C++0x)
checks if the given number is normal
(function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages